Exercises Feed

These exercises will be ungraded opportunities for you to continue to build your R skills. If you spend about 45 min to 1 hour on these skills weekly, you’ll find your abilities will improve dramatically very quickly.

Week 1

Week 2

Week 3

Week 4

Animation!

And here I have embedded the animated visualization:

Here is an image on the reported sightings of Bigfoot in the US over time.

Here is an interactive plot created with the plotly package:

library(vdemdata)

vdem %>% 
  filter(year == 2020, !is.na(v2x_regime), !is.na(e_v2x_gender_4C))%>%
  group_by(v2x_regime, e_v2x_gender_4C) %>%
  count() %>%
  ggplot(aes(x = v2x_regime, y = , e_v2x_gender_4C, fill = n))+
  geom_tile() -> gender_regime

ggplotly(gender_regime)-> gender_plotly

gender_plotly